/*
WARNING: Very technical use of a graph script.

This is an example script to install an event qualifier for a graph. Click the Execute button to apply and then execute this script. After execution the graph will not respond normally to mouse and keyboard events. Instead, it will forward processing to data graphics on the data layer of the graph that have their own scripts and associated event processing.
*/

/* Declaration blocks */

@@class() SingleCoordinateGraph:Object

@@method(public, class) (id)stored;
@@method(public, instance) (void)enableEventQualifier;
@@method(public, instance) (void)disableEventQualifier;

@@end

/* Execution block */

{
id myGraph;

myGraph = [SingleCoordinateGraph stored];

[myGraph enableEventQualifier];

}
